home *** CD-ROM | disk | FTP | other *** search
- //---------------------------------
- // Villages script
- //
- // (c) 2001 G5 Software:
- // Sergey Shoolts
- // Vlad Suglobov
- // Max Ryumin
- // Alex Tabunov
- // Alex Koloskov
- //---------------------------------
-
- class CBaseFarm
- {
- array ObjectClasses = array(
- "InteriorObject",
- "GameObject",
- "InteriorObject",
- "InteriorObject",
- "GameObject",
- "InteriorObject"
- );
-
- array ObjectPatterns = array(
- "CBaseSheaf",
- "CBaseDoubleHouse",
- "CBaseWoodShed",
- "CBaseWell",
- "CBaseSingleHouse",
- "CBaseBigSheaf"
- );
- }
-
- class CFarm_01 extends CBaseFarm
- {
- string VillageMapFile = "Villages/Farm_01.bmp";
- float VillageWidth = 100.0;
- float VillageHeight = 100.0;
- float RandomDirection = 5.0;
- vector RandomPosition = vector(0.0, 0.0, 0.0);
- }
-
-
-